home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / include / zebraCmd.h < prev    next >
C/C++ Source or Header  |  1992-06-21  |  892b  |  38 lines

  1. /*
  2.  * zebraCmd.h --
  3.  *
  4.  *    Declarations for the Zebra_Cmd system call.
  5.  *
  6.  * Copyright 1992 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that this copyright
  10.  * notice appears in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  *
  15.  * $Header: /sprite/lib/forms/RCS/proto.h,v 1.8 92/03/02 15:32:57 bmiller Exp $ SPRITE (Berkeley)
  16.  */
  17.  
  18. #ifndef _ZEBRA_CMD
  19. #define _ZEBRA_CMD
  20.  
  21. /*
  22.  * Commands.
  23.  */
  24.  
  25. #define ZEBRA_ADD_DOMAIN    1
  26. #define ZEBRA_DELETE_DOMAIN    2
  27.  
  28. /*
  29.  * Argument for ZEBRA_DELETE_DOMAIN.
  30.  */
  31. typedef struct {
  32.     int        serverID;
  33.     int        domainID;
  34. } Zebra_DeleteDomainCmd;
  35.  
  36. #endif /* _ZEBRA_CMD */
  37.  
  38.